home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 106 / RG2001 / RG2001.ISO / demos / Sam / Serious Sam Demo / 1_00_scripts.gro / Scripts / Addons / SFX-AutoAdjust.ini < prev    next >
Encoding:
Text File  |  2001-02-10  |  302 b   |  18 lines

  1.  
  2. // auto-adjust sound-quality based on CPU speed and RAM ammount
  3.  
  4. if( sys_iCPUMHz<390 || sys_iRAMPhys<60)
  5. {
  6.   snd_iFormat = 1;
  7. }
  8. else if( sys_iCPUMHz<590 || sys_iRAMPhys<120)
  9. {
  10.   snd_iFormat = 2;
  11. }
  12. else
  13. {
  14.   snd_iFormat = 3;
  15. }
  16.  
  17. snd_iInterface = 2; // try EAX, then DSound, then Waveout
  18.